home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / BACKUP / SLEEP.ZIP;1 / SLEEP.HLP < prev   
Encoding:
Text File  |  1994-04-21  |  3.8 KB  |  68 lines

  1.   Over the last several months I have received so much mail on our
  2. SLEEP.EXE drive utility that I find myself typing the same thing around
  3. 10 times a day!  So I've taken the common things people are asking and
  4. responded below.
  5.  
  6.   First a little background.  As notebook computers have become more and
  7. more popular, disk drive manufacturers have responded by building power
  8. management features into their drives.  That's right, if you have a
  9. recent IDE drive odds are it already has the sleep capability built
  10. right in!  All SLEEP.EXE does is send a command to the drive that says
  11. "start your sleep feature."  The drive ITSELF does the timeout spindown
  12. logic, turning itself off when the drive has not been accessed for the
  13. specified time and starting itself back up when the drive is accessed.
  14. SLEEP.EXE is not a TSR, since once it issues the command to the drive
  15. the program is done.  
  16.  
  17.   True to form, some drive manufacturers interpret the sleep command
  18. differently.  Some really do not care if their drives are used in
  19. notebooks, and just ignore the sleep command.  You can tell these drives
  20. by the fact that when you run SLEEP.EXE it seems to have no effect!
  21. SLEEP.EXE will report that the sleep mode is not supported IF THE DRIVE
  22. RETURNS AN ERROR on the command.  Unfortunately a few drives will return
  23. that "everything is ok" with the command and then just ignore it.  In
  24. this case SLEEP.EXE will report that the timeout is set, as the drive
  25. lied to it!  The best way to tell if your drive supports sleep mode is
  26. "does it work" -- easy enough to tell.  Most recent IDE drives have no
  27. problems.
  28.  
  29.   You can now see why some drives spin down immediately when they get
  30. the sleep command, and why some do not!  It's entirely up to how each
  31. manufacturer decides to implement the feature.  You can also see why it
  32. doesn't hurt to spin up and down your drive many times each day.  The
  33. drive manufacturers have to make hard disks that stand up to the rigors
  34. of notebook computing, so they have to design their drives to spin up
  35. and down during the course of normal operation.  No manufacturer wants
  36. to be known as the maker of a drive that wears out quickly when used in
  37. a notebook computer!
  38.  
  39.   For those of you who would like a little more technical information,
  40. the "sleep" command sent to the drive is 0xE2, and it takes a parameter
  41. (0-255) that is the number of 5-second intervals to sleep.  We take
  42. the number of minutes passed to SLEEP.EXE on the command line and multiply
  43. it by 12 to get the parameter to send with the 0xE2.  You can see why
  44. IDE drives do not support long timeouts, as (255*5)/60 is 21 minutes
  45. and 15 seconds.  We chose a parameter that is 1 to 15 mintues to keep it
  46. easy to remember.  And you guessed it, the fact that you cannot specify
  47. a two hour timeout is a limitation of the drive itself!
  48.  
  49.   You can also see why it is impossible to harm your data by using
  50. SLEEP.EXE.  Since it is not a TSR, nothing is resident to "mess up!"
  51. Either the drive supports sleep and works or it ignores the command.
  52.  
  53. Since most drives go back to their default state on powerup, it is
  54. necessary to run SLEEP.EXE each time you power up your computer.  This
  55. explains why the sleep mode stays active when you CTRL-ALT-DELETE
  56. or reset your computer (warm boot), since power is still applied to the
  57. drive.
  58.  
  59.   We hope this helps everyone understand a little more of the wonderful
  60. world of IDE drives, and power saving in general!  For the latest
  61. version of SLEEP (1.20), just download SLEEP.ZIP from CompuServe,
  62. America Online, or our own BBS at (816) 353-0991.  The new version has a
  63. change that allows "SLEEP C 0" to turn off sleep mode without having to
  64. power down your computer, and is worth the download.
  65.  
  66.   Dr. Boyd G. Gafford, EnQue Software
  67.   Internet address:  DrBoyd@aol.com
  68.